home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Bible Heaven
/
Bible Heaven.iso
/
business
/
pdmemb3a
/
memres.bat
< prev
next >
Wrap
DOS Batch File
|
1993-07-01
|
792b
|
36 lines
echo off
cls
if "%1" == "a:" goto Start
if "%1" == "A:" goto Start
if "%1" == "b:" goto Start
if "%1" == "B:" goto Start
goto errmsg
:Start
cls
echo Restoring Your ProDev*MEMBER Data Files
echo.
echo Insert your Member Backup disk in drive %1 and
pause
lha e -c %1membchld
echo .
echo Insert your Attendance Backup disk in drive %1 and
pause
lha e -c %1attend
echo .
Echo Insert your Giving Backup disk in drive %1 and
pause
lha e -c %1giving
echo .
echo BE SURE to use the Tools Reindex Data Files menu to rebuild your indexes.
echo .
goto end
:errmsg
echo You must type
echo MEMRES A: (Enter)
echo or
echo MEMRES B: (Enter)
echo .
echo to restore your ProDev*MEMBER data. Try again please.
echo .
:End